home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / examples / exam04 / main.c < prev    next >
C/C++ Source or Header  |  1995-09-27  |  2KB  |  116 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6. /*
  7.  *
  8.  *    This source code is CONFIDENTIAL and
  9.  *    PROPRIETARY to Algorithms Corporation. Unauthorized
  10.  *    distribution, adaptation or use    may
  11.  *    be subject to civil and    criminal penalties.
  12.  *
  13.  *    Copyright (c) 1993 Algorithms Corporation
  14.  *    3020 Liberty Hills Drive
  15.  *    Franklin, TN  37064
  16.  *
  17.  *    ALL RIGHTS RESERVED.
  18.  *
  19.  *
  20.  *
  21.  */
  22.  
  23.  
  24.  
  25. #include "generics.h"
  26.  
  27.  
  28. main(int argc, char *argv[])
  29. {
  30.     object    linkObject;
  31.  
  32.  
  33.     InitDynace(&argc);
  34.  
  35.  
  36.     /*  Create a new LinkObject */
  37.  
  38.     linkObject = gNew(LinkObject);
  39.  
  40.  
  41.     /*  Print the entire link object out  */
  42.  
  43.     gPrint(linkObject, stdoutStream);
  44.  
  45.  
  46.     /*  Add a new object to the beginning of the list and print  */
  47.  
  48.     gAddFirst(linkObject, gNewWithStr(String, "The first element added."));
  49.     gPrint(linkObject, stdoutStream);
  50.  
  51.  
  52.     /*  Add a new object to the beginning of the list and print */
  53.  
  54.     gAddFirst(linkObject, gNewWithDouble(DoubleFloat, 3.14159));
  55.     gPrint(linkObject, stdoutStream);
  56.  
  57.  
  58.     /*  Add a new object to the end of the list and print */
  59.  
  60.     gAddLast(linkObject, gNewWithLong(LongInteger, 186282L));
  61.     gPrint(linkObject, stdoutStream);
  62.  
  63.  
  64.     /*  Print the first element of the list and the whole list again  */
  65.  
  66.     gPrint(gFirst(linkObject), stdoutStream);
  67.     gPrint(linkObject, stdoutStream);
  68.  
  69.  
  70.     /*  Dispose of last element and print list  */
  71.  
  72.     gDeepDisposeLast(linkObject);
  73.     gPrint(linkObject, stdoutStream);
  74.  
  75.  
  76.     /*  Dispose of first element and print list  */
  77.  
  78.     gDeepDisposeFirst(linkObject);
  79.     gPrint(linkObject, stdoutStream);
  80.  
  81.     
  82.  
  83.     /*  Dispose of the entire link object and all objects held  */
  84.     /*  (again only necessary of garbage collector not used)    */
  85.  
  86.     gDeepDispose(linkObject);
  87.     
  88.     
  89.     return 0;
  90. }
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98. /*
  99.  *
  100.  *    This source code is CONFIDENTIAL and
  101.  *    PROPRIETARY to Algorithms Corporation. Unauthorized
  102.  *    distribution, adaptation or use    may
  103.  *    be subject to civil and    criminal penalties.
  104.  *
  105.  *    Copyright (c) 1993 Algorithms Corporation
  106.  *    3020 Liberty Hills Drive
  107.  *    Franklin, TN  37064
  108.  *
  109.  *    ALL RIGHTS RESERVED.
  110.  *
  111.  *
  112.  *
  113.  */
  114.  
  115.  
  116.